home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / patch / ps3b01.lha / 3.0bUpdate / Install-PageStream3.0b < prev    next >
Text File  |  1994-10-14  |  10KB  |  278 lines

  1. ;PAGESTREAM 3.0b ONLINE UPDATE PATCH INSTALLATION SCRIPT
  2. ;COPYRIGHT ©1994 SOFT-LOGIK PUBLISHING CORPORATION
  3.  
  4. ;SEE IF PAGESTREAM3 AND SOFTLOGIK ARE ASSIGNED AND EVERYTHING EXISTS
  5. (set PGSdest (getassign "PageStream3" "a"))
  6. (set SLdest (getassign "SoftLogik" "a"))
  7. (if (OR (= PGSdest "") (= SLdest ""))
  8.     (abort "PageStream3: and/or SoftLogik: are not assigned. You must properly install PageStream3 before applying this update patch.")
  9. )
  10. (set @default-dest PGSdest)
  11.     (if (<> (exists "PageStream3:PageStream3") 1)
  12. (abort "PageStream3 is not in the PageStream3: directory. You must properly install PageStream3 before applying this update patch.")
  13. )
  14. (if (<> (exists "SoftLogik:Libs") 2)
  15.     (abort "The SoftLogik:Libs directory is missing. You must properly install PageStream3 before applying this update patch.")
  16. )
  17. (if (<> (exists "SoftLogik:Engines") 2)
  18.     (abort "The SoftLogik:Engines directory is missing. You must properly install PageStream3 before applying this update patch.")
  19. )
  20. (if (<> (exists "SoftLogik:Printers") 2)
  21.     (abort "The SoftLogik:Printers directory is missing. You must properly install PageStream3 before applying this update patch.")
  22. )
  23. (if (<> (exists "SoftLogik:Filters") 2)
  24.     (abort "The SoftLogik:Filters directory is missing. You must properly install PageStream3 before applying this update patch.")
  25. )
  26. (if (<> (exists "SoftLogik:Effects") 2)
  27.     (abort "The SoftLogik:Effects directory is missing. You must properly install PageStream3 before applying this update patch.")
  28. )
  29.  
  30. ;SEE WHAT THE USER WANTS TO INSTALL
  31. (set ALLflag 0)
  32. (set SMAflag 1)
  33.  
  34. (message "\n\nThis will update your hard drive installation of PageStream 3.0 to version 3.0b. It requires that PageStream 3.0 be installed on your hard drive first. If you have 3.0a and not 3.0, you cannot use this patch. You must download the PS3BA1.LHA archive instead.\n\nYour original PageStream3 disks will not be modified by this update.")
  35. (set install_mode
  36.     (askchoice
  37.         (prompt
  38.             "\nSelect an installation option.\n\nChoose `All' if you have a full PageStream3 installation. Choose `Smart' if you have a custom or minimum PageStream3 installation.\n")
  39.         (choices "All New and Improved 3.0b Files" "Smart Install")
  40.         (default 0)
  41.         (help
  42.             "Smart Install will check to see if a file exists before copying the new one to your hard drive. Thus, if you deleted the HP.printer driver because you didn't need it, the new one will not be installed.")
  43.     )
  44. )
  45.  
  46. ;SET FLAGS FOR NEW STUFF IF SMART INSTALL
  47. (if (= install_mode SMAflag)
  48.     (
  49.         (set epsonflag
  50.             (askbool
  51.                 (prompt
  52.                     "Do you want to install the new custom Epson printer driver?\n\nThis driver also can be used for some Canon printers.")
  53.                 (help
  54.                     "This driver can be used on most Epson compatible printers and some Canon BubbleJet printers instead of using PageStream3's Preference driver with your AmigaDOS driver.")
  55.                 (default 1)
  56.             )
  57.         )
  58.         (set fargoflag
  59.             (askbool
  60.                 (prompt
  61.                     "Do you want to install the new custom Fargo printer driver?")
  62.                 (help
  63.                     "This driver can be used on the Fargo Primera printer with or without the dye sublimation option.")
  64.                 (default 1)
  65.             )
  66.         )
  67.     )
  68. )
  69.  
  70. ;COPY THE LHEX PROGRAM TO RAM:
  71. (copyfiles
  72.     (source "PageStream3Disk1:lhex")
  73.     (dest "ram:")
  74.     (nogauge)
  75. )
  76.  
  77. ;UPDATE LIBS
  78. (working "Patching Libraries...")
  79. (run "ram:lhex >NIL: <NIL: -qfw=ram: x LibsPatch.lha")
  80. (delete "LibsPatch.LHA" (safe))
  81. (run "spatch >NIL: <NIL: -oSoftLogik:Libs/app.library -pram:app.pch SoftLogik:Libs/SoftLogik_App.library")
  82. (if (exists "SoftLogik:Libs/app.library")
  83.     (
  84.         (delete "SoftLogik:Libs/SoftLogik_App.library")
  85.         (rename "SoftLogik:Libs/app.library" "SoftLogik:Libs/SoftLogik_App.library")
  86.     )
  87. )
  88. (delete "ram:app.pch" (safe))
  89. (run "spatch >NIL: <NIL: -oSoftLogik:Libs/obj.library -pram:obj.pch SoftLogik:Libs/SoftLogik_Obj.library")
  90. (if (exists "SoftLogik:Libs/obj.library")
  91.     (
  92.         (delete "SoftLogik:Libs/SoftLogik_Obj.library")
  93.         (rename "SoftLogik:Libs/obj.library" "SoftLogik:Libs/SoftLogik_Obj.library")
  94.     )
  95. )
  96. (delete "ram:obj.pch" (safe))
  97.  
  98. ;UPDATE FONT ENGINES
  99. (working "Installing Updated Font Engines...")
  100. (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Engines x Engines.lha")
  101. (delete "Engines.LHA" (safe))
  102.  
  103. ;UPDATE PRINTER DRIVERS
  104. (working "Installing Updated Printer Drivers...")
  105. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Printers/HP.printer"))
  106.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x HP.lha")
  107. )
  108. (delete "HP.LHA" (safe))
  109.  
  110. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Printers/PostScript.printer"))
  111.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x PostScript.lha")
  112. )
  113. (delete "PostScript.LHA" (safe))
  114.  
  115. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Printers/Preference.printer"))
  116.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x Preference.lha")
  117. )
  118. (delete "Preference.LHA" (safe))
  119.  
  120. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Printers/IFFILBM.printer"))
  121.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x IFFILBM.lha")
  122. )
  123. (delete "IFFILBM.LHA" (safe))
  124.  
  125. (if (OR (= install_mode ALLflag) (= epsonflag 1))
  126.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x Epson.lha")
  127. )
  128. (delete "Epson.LHA" (safe))
  129.  
  130. (if (OR (= install_mode ALLflag) (= fargoflag 1))
  131.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Printers x Fargo.lha")
  132. )
  133. (delete "Fargo.LHA" (safe))
  134.  
  135. ;UPDATE FILTERS AND EFFECTS
  136. (working "Installing Updated Filters and Effects...")
  137. (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Filters.lha")
  138. (delete "Filters.LHA" (safe))
  139.  
  140. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/ArtExpressionEPS.gfilter"))
  141.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x ArtExpression.lha")
  142. )
  143. (delete "ArtExpression.LHA" (safe))
  144.  
  145. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/Excellence.tfilter"))
  146.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Excellence.lha")
  147. )
  148. (delete "Excellence.LHA" (safe))
  149.  
  150. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/FinalWriter.tfilter"))
  151.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x FWriter.lha")
  152. )
  153. (delete "FWriter.LHA" (safe))
  154.  
  155. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/FreehandEPS.gfilter"))
  156.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Freehand.lha")
  157. )
  158. (delete "Freehand.LHA" (safe))
  159.  
  160. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/IllustratorEPS.gfilter"))
  161.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Illustrator.lha")
  162. )
  163. (delete "Illustrator.LHA" (safe))
  164.  
  165. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/PageStream2.dfilter"))
  166.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x PageStream2.lha")
  167. )
  168. (delete "PageStream2.LHA" (safe))
  169.  
  170. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/ProPage.dfilter"))
  171.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x PPage.lha")
  172. )
  173. (delete "PPage.LHA" (safe))
  174.  
  175. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/ProDrawClip.gfilter"))
  176.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x ProDraw.lha")
  177. )
  178. (delete "ProDraw.LHA" (safe))
  179.  
  180. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/ProWrite.tfilter"))
  181.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x ProWrite.lha")
  182. )
  183. (delete "ProWrite.LHA" (safe))
  184.  
  185. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/Word.tfilter"))
  186.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Word.lha")
  187. )
  188. (delete "Word.LHA" (safe))
  189.  
  190. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/WordPerfect.tfilter"))
  191.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x WordPerfect.lha")
  192. )
  193. (delete "WordPerfect.LHA" (safe))
  194.  
  195. (if (OR (= install_mode ALLflag) (exists "SoftLogik:Filters/Wordworth.tfilter"))
  196.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Wordworth.lha")
  197. )
  198. (delete "Wordworth.LHA" (safe))
  199.  
  200. (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Filters x Filters.lha")
  201. (delete "Filters.LHA" (safe))
  202.  
  203. (if (OR (= install_mode ALLflag) (exists "PageStream3:BME"))
  204.     (run "ram:lhex >NIL: <NIL: -qfw=SoftLogik:Effects x Effects.lha")
  205. )
  206. (delete "Effects.LHA" (safe))
  207.  
  208. ;UPDATE MACROS
  209. (if (<> (exists "PageStream3:Macros") 2) (makedir "PageStream3:Macros" (infos)))
  210. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Macros x Macros.lha")
  211. (delete "Macros.LHA" (safe))
  212.  
  213. ;INSTALL CORRECT BME ICON
  214. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x bmeinfo.lha")
  215. (delete "bmeinfo.lha" (safe))
  216.  
  217. ;UPDATE PAGESTREAM3
  218. (working "Patching PageStream 3.0 to 3.0b...\n\nThis will take about one to five minutes.")
  219. (run "ram:lhex >NIL: <NIL: -qfw=ram: x PGSpatch.LHA")
  220. (delete "PGSpatch.LHA" (safe))
  221. (run "spatch >NIL: <NIL: -oPageStream3:PageStream3.0b -pram:PageStream.pch PageStream3:PageStream3")
  222. (if (exists "PageStream3:PageStream3.0b")
  223.     (
  224.         (delete "PageStream3:PageStream3")
  225.         (rename "PageStream3:PageStream3.0b" "PageStream3:PageStream3")
  226.     )
  227. )
  228. (delete "ram:PageStream.pch" (safe))
  229.  
  230. ;UPDATE PAGELINER
  231. (if (exists "PageStream3:PageLiner")
  232.     (
  233.         (working "Patching PageLiner 2.0 to 2.0a...")
  234.         (run "ram:lhex >NIL: <NIL: -qfw=ram: x PLpatch.LHA")
  235.         (delete "PLpatch.LHA" (safe))
  236.         (run "spatch >NIL: <NIL: -oPageStream3:PageLiner2.0a -pram:PageLiner.pch PageStream3:PageLiner")
  237.         (if (exists "PageStream3:PageLiner2.0a")
  238.             (
  239.                 (delete "PageStream3:PageLiner")
  240.                 (rename "PageStream3:PageLiner2.0a" "PageStream3:PageLiner")
  241.             )
  242.         )
  243.     )
  244. )
  245. (delete "ram:PageLiner.pch" (safe))
  246.  
  247. ;INSTALL TIPS
  248. (if (<> (exists "PageStream3:Help") 2) (makedir "PageStream3:Help" (infos)))
  249. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3:Help x Tips.LHA")
  250. (delete "Tips.LHA" (safe))
  251.  
  252. ;INSTALL FONTLISTv2ANALYZER
  253. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x FLister.LHA")
  254. (delete "FLister.LHA" (safe))
  255.  
  256. ;INSTALL README
  257. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x Read.LHA")
  258. (delete "Read.LHA" (safe))
  259.  
  260. ;DISPLAY README (Try 3 different ways!)
  261. (run "ram:lhex >NIL: <NIL: -qfw=PageStream3: x Read.LHA")
  262. (delete "Read.LHA" (safe))
  263. (IF (> (run "Sys:Utilities/MultiView PageStream3:ReadMe.Now") 0)
  264.     (IF (> (run "Sys:Utilities/AmigaGuide PageStream3:ReadMe.Now") 0)
  265.         (run "More PageStream3:ReadMe.Now")
  266.     )
  267. )
  268.  
  269. ;REMOVE THE LHARC PROGRAM
  270. (delete "ram:lhex" (safe))
  271. (delete "spatch" (safe))
  272. (delete "Install-PageStream3.0b.info" (safe))
  273.  
  274. (message "You MUST update any font path containing a PostScript font. Run PageStream3, choose Settings/Fonts, select the StudioFonts path and click on the Update gadget. Repeat for the SerialsFonts path, IQEfonts path and any other PostScript font paths you may have.\n\nThis is important!\n\nNot doing this will lead to problems.")
  275.  
  276. ;GEE, THAT WAS FUN
  277. (exit "PageStream 3.0b installed!")
  278.